body {
    font-family: Satoshi, sans-serif;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;

    #circle-play-b {
        cursor: pointer;
        pointer-events: auto;

        svg {
            width: 100px;
            height: 100px;
            fill: #fff;
            stroke: #fff;
            cursor: pointer;
            background-color: rgba(black, 0.2);
            border-radius: 50%;
            opacity: 0.9;
        }
    }
}

.mentor-card {
    background: white;
    border-radius: 20px;
    width: 400px;
    padding: 25px 25px 50px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mentor-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 20px;
}

.mentor-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.mentor-title {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.view-profile-btn {
    border: 1px solid #0057b2;
    border-radius: 10px;
    padding: 7px 13px;
    background-color: #0057b2;
    color: #fff;
    width: 100%;
    margin-top: 20px;
}

.view-profile-btn:hover {
    border: 2px solid #0057b2;
    background-color: transparent;
    color: #0057b2;
}

.interior-section {
    background-color: #f8f7f4;
    padding: 90px 0px 0px;
}

.interior-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.interior-text {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 30px;
    max-width: 500px;
}

.interior-btn {
    background-color: black;
    color: white;
    padding: 22px 56px 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1em;
    transition: transform .3s;
    transform: scale3d(1, 1, 1.01);
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.interior-btn:hover {
    color: white;
    transform: scale3d(1.03, 1.03, 1.01);
}

.interior-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 0;
}

.interior-section h2 {
    color: black;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3em;
}

.interior-section p {
    font-size: 24px;
    line-height: 1.583em;
}

.services-details {
    padding: 120px 20px;
    background-color: black;
    color: white;
}

.service-subtitle {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-title {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.083em;
}

.service-paragraph {
    color: #ddd;
    /* max-width: 800px; */
    margin-bottom: 30px;
    font-family: Satoshi, sans-serif;
    font-size: 18px;
    line-height: 1.667em;
}

.service-paragraph a {
    color: #aaa;
    text-decoration: underline;
}

.service-list {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    list-style: disc;
}

.section-heading {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.083em;
}

.btn-rounded {
    background-color: white;
    color: black;
    padding: 22px 56px 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1em;
    transition: transform .3s;
    transform: scale3d(1, 1, 1.01);
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-rounded:hover {
    color: black;
    transform: scale3d(1.03, 1.03, 1.01);
}

.btn-rounded svg {
    margin-left: 10px;
}

.service-partial-title {
    font-size: 30px;
}

.question-answer h3 {
    font-size: 18px;
    margin-top: 30px;
}

.question-answer p {
    width: 70%;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 17px;
}



@media only screen and (max-width: 400px) {

    .interior-section h2 {
        margin-bottom: 18px;
        font-size: 26px;
        margin-top: 30px;
    }

    .interior-section p {
        font-size: 18px;
    }

    .interior-btn {
        padding: 12px 33px 12px;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-details {
        padding: 60px 10px;
    }

    .service-title {
        font-size: 25px;
    }

    .service-paragraph {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-partial-title {
        font-size: 20px;
        margin-bottom: 10px;
        margin-top: 25px !important;
    }

    .service-list li {
        margin-bottom: 10px;
        padding-left: 8px;
        list-style: disc;
        font-size: 12px;
    }

    .question-answer h3 {
        font-size: 14px;
        margin-top: 20px;
    }

    .question-answer p {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .interior-image img {
        height: 350px;
    }
}

@media screen and (min-width: 400px) and (max-width: 600px) {
    .interior-section h2 {
        margin-bottom: 18px;
        font-size: 26px;
        margin-top: 30px;
    }

    .interior-section p {
        font-size: 18px;
    }

    .interior-btn {
        padding: 12px 33px 12px;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-details {
        padding: 60px 10px;
    }

    .service-title {
        font-size: 25px;
    }

    .service-paragraph {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-partial-title {
        font-size: 20px;
        margin-bottom: 10px;
        margin-top: 25px !important;
    }

    .service-list li {
        margin-bottom: 10px;
        padding-left: 8px;
        list-style: disc;
        font-size: 12px;
    }

    .question-answer h3 {
        font-size: 14px;
        margin-top: 20px;
    }

    .question-answer p {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .interior-image img {
        height: 350px;
    }

    .interior-image {
        padding-left: 0px !important;
    }
}

@media screen and (min-width: 600px) and (max-width:768px) {
    .interior-section h2 {
        margin-bottom: 18px;
        font-size: 30px;
        margin-top: 40px;
    }

    .interior-section p {
        font-size: 19px;
        max-width: revert;
    }

    .interior-btn {
        padding: 12px 33px 12px;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .services-details {
        padding: 60px 10px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-paragraph {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .service-partial-title {
        font-size: 22px;
        margin-bottom: 10px;
        margin-top: 35px !important;
    }

    .service-list li {
        margin-bottom: 10px;
        padding-left: 8px;
        list-style: disc;
        font-size: 13px;
    }

    .question-answer h3 {
        font-size: 14px;
        margin-top: 20px;
    }

    .question-answer p {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 13px;
    }

    .interior-image {
        padding-left: 0px !important;
    }
}

@media screen and (min-width: 768px) and (max-width:992px) {
    .interior-section h2 {
        margin-bottom: 18px;
        font-size: 30px;
        margin-top: 40px;
    }

    .interior-section p {
        font-size: 19px;
        max-width: revert;
    }

    .interior-btn {
        padding: 12px 33px 12px;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-title {
        font-size: 30px;
    }

    .service-paragraph {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .service-partial-title {
        font-size: 25px;
        margin-bottom: 10px;
        margin-top: 35px !important;
    }

    .service-list li {
        margin-bottom: 10px;
        padding-left: 8px;
        list-style: disc;
        font-size: 15px;
    }

    .question-answer h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .question-answer p {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .interior-image img {
        height: 500px;  
    }
}

@media screen and (min-width: 992px) and (max-width:1200px) {
    .interior-section h2 {
        margin-bottom: 18px;
        font-size: 35px;
        margin-top: 40px;
    }

    .interior-section p {
        font-size: 22px;
        /* max-width: revert; */
    }

    .interior-btn {
        padding: 17px 42px 17px;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .service-title {
        font-size: 35px;
    }

    .service-paragraph {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .service-partial-title {
        font-size: 28px;
        margin-bottom: 10px;
        margin-top: 35px !important;
    }

    .service-list li {
        margin-bottom: 10px;
        padding-left: 8px;
        list-style: disc;
        font-size: 15px;
    }

    .question-answer h3 {
        font-size: 16px;
        margin-top: 20px;
    }

    .question-answer p {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .interior-image img {
        height: 500px;
    }
}